home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 21
/
AACD 21.iso
/
AACD
/
Resources
/
General
/
ProNET
/
src
/
src
/
flush.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-01-26
|
239 b
|
20 lines
/*
flush.c
*/
#include <exec/execbase.h>
#include <proto/exec.h>
void flush_pronet_dev()
{
struct Device *pdev;
Forbid();
if((pdev=(struct Device *)FindName(&SysBase->DeviceList,"pronet.device")))
RemDevice(pdev);
Permit();
}